You are here: Symbol Reference > Dew Namespace > Dew.Stats Namespace > Dew.Stats.Units Namespace > Classes > StatTimeSerAnalysis Class > StatTimeSerAnalysis Methods > StatTimeSerAnalysis.ARBurgFit Method
Dew Stats for .NET
ContentsIndexHome
PreviousUpNext
StatTimeSerAnalysis.ARBurgFit Method

Burg AR estimation.

Syntax
C#
Visual Basic
public static void ARBurgFit([In] TVec Data, [In] TVec Phi, out double Sigma2, [In] TVec StdErrs);
Parameters 
Description 
[In] TVec Data 
Zero-mean time series. If this is not the case, subtract the mean from data. 
[In] TVec Phi 
Returns estimates for Phi coefficients. AR(p) order is determined by Phi length. 
out double Sigma2 
Returns Burg estimated variance for AR process. 
[In] TVec StdErrs 
Returns estimated phi coefficients standard errors. 

Performs Burg estimation for pure (AR) model.

Calculate initial estimates for AR(3) process by using Burg's algorithm.

using Dew.Math; using Dew.Stats; using Dew.Stats.Units; namespace Dew.Examples { private void Example() { Vector ts = new Vector(0); Vector phi = new Vector(0); Vector stdErr = new Vector(0); double s2; ts.LoadFromFile("timeser.vec"); phi.Length = 3; // for AR(3) process StatTimeSerAnalysis.ARBurgFit(ts,phi,out s2,stdErr); } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!